#include<stdio.h>
int main ()
{
    printf ("Enter the value of seconds you want to convert :");
    int seconds;
    scanf("%d", & seconds);
    int year = seconds/31536000;
    int a = seconds % 31536000 ;
    int month = a / 2592000 ;
    int b = a % 2592000 ;
    int day = b / 86400 ;
    int c = b % 86400 ;
    int hour = c / 3600 ;
    int d = c % 3600 ;
    int minute = d / 60 ;
    int e = d % 60 ;
    printf ( "The conversion of the provided seconds has converted to : %d Years ,%d Months ,%d Days , %d Hours, %d Minutes and %d Remaining seconds", year,month,day,hour,minute,e);
    return 0;

}
